home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
archive
/
userbox
/
publicdomain
/
megabook.lha
/
MegaBook
/
Rexx
/
MegaCookie_Startup.mbrx
< prev
next >
Wrap
Text File
|
1996-07-15
|
1KB
|
36 lines
/*
** MegaBook Version 3.0 Example Startup Rexx script
** By Tom Bampton
**
** © 1996 Eden Software
**
** This example is a version of MegaCookie for startup scripts.
** MegaCookie was written by Edward Farrow
*/
address 'MEGABOOK.01'
options results
/* Line Feed Char. Makes A New Line In Requestors (Ta Tom!) */
LF='0a'x
/* ' And " Chars. Makes Rexx Scripts Allow ' And " Symbols */
SQ='"'
DQ="'"
/* Cookie Picker */
Cookie.1 = "A women without a man is like"LF"a fish without a bicycle"
Cookie.2 = "Babies can"SQ"t walk because"LF"their legs aren"SQ"t long enough"LF"to reach the ground"
Cookie.3 = "Having children will turn you"LF"into a parent (shudder)"
Cookie.4 = "This fortune will self destruct"LF"in 30 seconds..."
Cookie.5 = "Man who eats jelly beans farts"LF"in techni-color"
Cookie.6 = "I.B.M: Inferior But Marketable"LF"P.C: Peice "DQ"Of"DQ" Crap"
Cookie.7 = "9 out of 10 cats prefer hamsters"
Cookie.8 = "A nuclear war can ruin your whole day"
Cookie.9 = "A penny saved is ridiculous!"
CALL Randu(time('s'))
picked = RANDOM(1,9)
COOKIE = Cookie.picked
/* Display Cookie */
REQUEST ''COOKIE'' GADS '_ho ho ho'